Enter a type and click search.




Results for Amazon\Core\Logger\Logger

File: vendor/amzn/amazon-pay-module/etc/di.xml

<type name="Amazon\Core\Logger\ExceptionLogger">
    <arguments>
        <argument name="logger" xsi:type="object">
            Amazon\Core\Logger\Logger
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Amazon\Core\Logger\ExceptionLogger object that the following arguments should be used in the foo object's constructor.

Results for Amazon\Core\Logger\Logger

File: vendor/amzn/amazon-pay-and-login-with-amazon-core-module/etc/di.xml

<type name="Amazon\Core\Logger\Logger">
    <arguments>
        <argument name="name" xsi:type="string">
            amazonClientLogger
        </argument>
        <argument name="handlers" xsi:type="array">
            <item name="debug" xsi:type="object">
                Amazon\Core\Logger\Handler\Client
            </item>
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Amazon\Core\Logger\Logger object that the following arguments should be used in the foo object's constructor.

  • $name = "amazonClientLogger";
  • $handlers = [...items...];

File: vendor/amzn/amazon-pay-and-login-with-amazon-core-module/etc/di.xml

<type name="Amazon\Core\Client\ClientFactory">
    <arguments>
        <argument name="logger" xsi:type="object">
            Amazon\Core\Logger\Logger
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Amazon\Core\Client\ClientFactory object that the following arguments should be used in the foo object's constructor.